<style>
	
/* General */

	html {
	  box-sizing: border-box; /* Ensures consistent box-sizing */
    }

/* LOADER */
    #hue-loader {
      position: fixed;
      inset: 0;
      background: linear-gradient( 120deg, hsl(200, 40%, 15%), hsl(260, 40%, 15%) );
      animation: hueShift 6s linear infinite;
      z-index: 9999;
      transition: opacity 0.6s ease;
    }

@keyframes hueShift {
    from {
      filter: hue-rotate(0deg);
    }

    to {
      filter: hue-rotate(360deg);
    }
}

    body {
      box-sizing: border-box;
      margin: 0;
      background:
        url("/IMG/IMG_BG/Warm concrete.jpg");
	  background-repeat: repeat;
	  background-position: top left;
	  background-size:
        500px;
      font-family: Arial, Helvetica, sans-serif;
      padding-top: 80px; /* Space for the nav bar */
	  overflow-y: scroll; /* Ensures the scrollbar is always present */
      font-size: 18px;
      line-height: 1.6;
      color: rgba(255,255,255,0.9);
    }

    h1, h2, h3 {
      line-height: 1.2;
      font-weight: bold;
    }

    h3 {
      font-size: 22px;
    }

    p {
      font-size: 18px;
      text-align: left;
      hyphens: auto;
      word-break: break-word;
      margin-bottom: 1em;
      max-width: 65ch;
    }
	
	*, *::before, *::after {
	  box-sizing: inherit; /* Inherit box-sizing for all elements */
	}

/* Scrollbar */

	/* Style the scrollbar */
	::-webkit-scrollbar {
	  width: 16px;
	  background-color: #000000;
	}

	/* Style the scrollbar thumb */
	::-webkit-scrollbar-thumb {
	  background-color: #000;
	  border-radius: 8px; /* Rounded edges */
	  border: 4px solid #888; /* Padding between thumb and track */
	}

	/* Hover effect for scrollbar thumb */
	::-webkit-scrollbar-thumb:hover {
	  background-color: #555; /* Darker on hover */
	}

/* Navigation tab */

    .tab {
      overflow: hidden;
      background:
        linear-gradient(
        to right,
        rgba(0,0,0,1) 0%,
	    rgba(0,0,0,0.3) 20%,
	    rgba(0,0,0,0) 50%,
	    rgba(0,0,0,0.3) 80%,
	    rgba(0,0,0,1) 100%
        ),
        url("/IMG/IMG_BG/Noise.jpg") repeat;
      background-size:
        100% 100%,
        128px 128px;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 9998;
      border-bottom: 2px solid grey;
      display: flex;
      align-items: center;
      padding: 0 50px;
      height: 80px; /* Define height of the nav bar */
    }

    .tab .logo {
      margin-right: auto;
    }

    .tab .logo img {
      height: 60px; /* Adjust the height as needed */
      width: auto;
      display: inline-block;
	  vertical-align: middle;
    }

    .tab a {
      background-color: inherit;
      float: right;
      text-align: center;
      cursor: pointer;
      padding: 14px 16px;
      transition: 0.3s;
      font-size: 20px;
      color: #f2f2f2;
      text-decoration: none;
    }

    .tab a:hover {
      background-color: #ddd;
      color: black;
      transition: 0.3s;
    }

    .page {
      display: block;
    }

    .page-content {
      padding: 12px 12px;
    }

    .page-content:target {
      display: block !important;
      scroll-margin-top: 60px;
    }

/* Dropdown menu */

    .dropdown {
      display: none;
      font-size: 30px;
      color: #f2f2f2;
    }

    .dropdown-content {
      display: none;
      position: fixed;
      background-color: #333;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      z-index: 1000;
      top: 60px; /* Adjust based on the height of your navigation bar */
      width: 100%;
      height: auto; /* Ensure height adjusts to fit content */
      padding: 0px 0px;
    }

    .dropdown-content a {
      display: none; /* Make the buttons stack vertically */
      padding: 10px 20px;
      text-align: left; /* Align text to the left */
      color: white;
      text-decoration: none;
      border-bottom: 1px solid #444; /* Optional: Add border between items */
    }

    .dropdown-content a:hover {
      background-color: #ddd;
      color: black;
    }

    .show {
      display: block;
    }

/* Footer */
	
	footer {
      background:
        linear-gradient(
        to right,
        rgba(0,0,0,1) 0%,
	    rgba(0,0,0,0.3) 20%,
	    rgba(0,0,0,0) 50%,
	    rgba(0,0,0,0.3) 80%,
	    rgba(0,0,0,1) 100%
        ),
        url("/IMG/IMG_BG/Noise.jpg") repeat;
      background-size:
        100% 100%,
        128px 128px;
      color: #fff;
	  border-top: 2px solid grey;
      padding: 20px 0;
      text-align: center;
	}

	.footer-content p {
      margin-bottom: 10px;
      margin-inline: auto;
      font-size: 16px;
      text-align: center;
	}

	.social-media a {
      color: #fff;
      margin: 0 10px;
      font-size: 24px;
      text-decoration: none;
	}

	.social-media a:hover {
      color: #007bff;
	}

/* Scroll arrow button */

	.scroll-arrow {
      position: fixed;
      bottom: 20px;
      right: 30px;
	  width: 50px;            /* Set a fixed width */
      height: 50px;           /* Set the height equal to the width */
      background-color: #333;
      border: 3px solid white; /* White border added */
      color: white;
      font-size: 24px;
      padding: 10px;
      border-radius: 50%;
	  display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      cursor: pointer;
      z-index: 1000; /* Ensures it's on top */
      transition: opacity 0.5s ease;
	}

/* Changes based on screen size */

    @media screen and (max-width: 900px) {
        .tab a:not(.dropdown, .logo) {
          display: none;
        }

        .dropdown-content.show {
          display: block;
        }

        .dropdown {
          display: block;
        }

        .tab {
          height: 60px;
          padding: 0 15px;
        }

		body {
	      padding-top: 60px;
		}

        /* Ensure the dropdown buttons stack vertically */
        .dropdown-content a {
          display: block; /* Forces each item to be a block element */
          width: 100%; /* Full width for mobile */
        }
    }

    @media screen and (max-width: 600px) {

        .tab {
          flex-direction: column; /* Stack the items vertically */
          align-items: flex-start; /* Align items to the left */
        }

        .tab a {
          float: none; /* Reset the float */
          text-align: left; /* Align text to the left */
        }

        .tab .logo {
          margin-right: 0;
        }

        .p {
            font-size: 16px;
            line-height: 1.6;
        }
    }

</style>